home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / clearstack.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  192b  |  15 lines

  1. #include "kiss.h"
  2.  
  3. void clearstack (Stringstack *w)
  4. {
  5.     register int
  6.     i;
  7.     
  8.     for (i = 0; i < w->nstr; i++)
  9.     free (w->str [i]);
  10.     free (w->str);
  11.  
  12.     w->nstr = 0;
  13.     w->str = NULL;
  14. }
  15.